Get Fixed Deposit Products
GET /fixed-deposit/products
Description
Retrieves a list of fixed deposit products available for a specific tenant and country. This endpoint requires authentication headers.
Headers:
| Name | Type | Description |
|---|---|---|
tenantId | string | The unique identifier for the tenant (required). |
countryCode | string | The country code (required). |
Example Request:
curl -X GET "{{baseURL}}/fixed-deposit/products" \
-H "Authorization: Bearer [access_token]" \
-H "tenantId: [tenantId]" \
-H "countryCode: [countryCode]"
Sample Response: 200
{
"status": true,
"statusCode": 0,
"message": "string",
"data": {},
"errors": [
{
"message": "string",
"data": {},
"descriptiveMessage": "string"
}
]
}
LANGUAGE
CURL REQUEST
curl --request GET \
--url /fixed-deposit/products \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!